2025-07-28 17:23:09,451 [ 244639 ] INFO : ClickHouse root is not set. Will use /home/ubuntu/_work/ClickHouse/ClickHouse (runner:53, check_args_and_update_paths) 2025-07-28 17:23:09,451 [ 244639 ] INFO : Cases dir is not set. Will use /home/ubuntu/_work/ClickHouse/ClickHouse/tests/integration (runner:79, check_args_and_update_paths) 2025-07-28 17:23:09,451 [ 244639 ] INFO : utils dir is not set. Will use /home/ubuntu/_work/ClickHouse/ClickHouse/utils (runner:90, check_args_and_update_paths) 2025-07-28 17:23:09,452 [ 244639 ] INFO : base_configs_dir: /home/ubuntu/_work/ClickHouse/ClickHouse/programs/server, binary: /home/ubuntu/_work/_temp/test/build/clickhouse, cases_dir: /home/ubuntu/_work/ClickHouse/ClickHouse/tests/integration (runner:92, check_args_and_update_paths) clickhouse_integration_tests_volume Running pytest container as: 'docker run --rm --name clickhouse_integration_tests_h9wuha --privileged --dns-search='.' --memory=30709035008 --security-opt seccomp=unconfined --cap-add=SYS_PTRACE --volume=/home/ubuntu/_work/_temp/test/build/clickhouse:/clickhouse --volume=/home/ubuntu/_work/ClickHouse/ClickHouse/programs/server:/clickhouse-config --volume=/home/ubuntu/_work/ClickHouse/ClickHouse/tests/integration:/ClickHouse/tests/integration --volume=/home/ubuntu/_work/ClickHouse/ClickHouse/utils/backupview:/ClickHouse/utils/backupview --volume=/home/ubuntu/_work/ClickHouse/ClickHouse/utils/grpc-client/pb2:/ClickHouse/utils/grpc-client/pb2 --volume=/run:/run/host:ro --volume=clickhouse_integration_tests_volume:/var/lib/docker -e DOCKER_DOTNET_CLIENT_TAG=11de0b29a15d -e DOCKER_HELPER_TAG=5dc43a6382f0 -e DOCKER_BASE_TAG=5ccda723c1fc -e DOCKER_KERBEROS_KDC_TAG=9391ecdee8d7 -e DOCKER_MYSQL_GOLANG_CLIENT_TAG=9bec2a638e6e -e DOCKER_MYSQL_JAVA_CLIENT_TAG=766bff31cfe4 -e DOCKER_MYSQL_JS_CLIENT_TAG=41ba7c2ec2a1 -e DOCKER_MYSQL_PHP_CLIENT_TAG=88be89c1e3b6 -e DOCKER_NGINX_DAV_TAG=b55ac9cd7519 -e DOCKER_POSTGRESQL_JAVA_CLIENT_TAG=a4eff5c7f4d6 -e DOCKER_PYTHON_BOTTLE_TAG=d862517635bf -e DOCKER_CLIENT_TIMEOUT=300 -e COMPOSE_HTTP_TIMEOUT=600 -e PYTHONUNBUFFERED=1 -e PYTEST_ADDOPTS="--dist=loadfile -n 10 -rfEps --run-id=1 --color=no --durations=0 --report-log=parallel0_1.jsonl --report-log-exclude-logs-on-passed-tests test_asynchronous_metric_jemalloc_profile_active/test.py::test_asynchronous_metric_jemalloc_profile_active test_backup_restore_on_cluster/test_different_versions.py::test_different_versions -vvv " altinityinfra/integration-tests-runner:226bfaf75ac1 '. Start tests ============================= test session starts ============================== platform linux -- Python 3.10.12, pytest-7.4.4, pluggy-1.5.0 -- /usr/bin/python3 cachedir: .pytest_cache Test order randomisation NOT enabled. Enable with --random-order or --random-order-bucket= rootdir: /ClickHouse/tests/integration configfile: pytest.ini plugins: timeout-2.3.1, repeat-0.9.3, order-1.0.0, reportlog-0.4.0, xdist-3.5.0, random-order-1.1.1 timeout: 900.0s timeout method: signal timeout func_only: False created: 10/10 workers 10 workers [2 items] scheduling tests via LoadFileScheduling test_asynchronous_metric_jemalloc_profile_active/test.py::test_asynchronous_metric_jemalloc_profile_active test_backup_restore_on_cluster/test_different_versions.py::test_different_versions [gw0] [ 50%] SKIPPED test_asynchronous_metric_jemalloc_profile_active/test.py::test_asynchronous_metric_jemalloc_profile_active [gw2] [100%] FAILED test_backup_restore_on_cluster/test_different_versions.py::test_different_versions =================================== FAILURES =================================== ___________________________ test_different_versions ____________________________ [gw2] linux -- Python 3.10.12 /usr/bin/python3 def test_different_versions(): new_node.query( "CREATE TABLE tbl" " ON CLUSTER 'cluster_ver'" " (x UInt64) ENGINE=ReplicatedMergeTree('/clickhouse/tables/tbl/', '{replica}')" " ORDER BY tuple()" ) new_node.query(f"INSERT INTO tbl VALUES (1)") old_node.query(f"INSERT INTO tbl VALUES (2)") backup_name = new_backup_name() initiator = random_node() print(f"Using {get_node_name(initiator)} as initiator for BACKUP") initiator.query(f"BACKUP TABLE tbl ON CLUSTER 'cluster_ver' TO {backup_name}") new_node.query("DROP TABLE tbl ON CLUSTER 'cluster_ver' SYNC") initiator = random_node() print(f"Using {get_node_name(initiator)} as initiator for RESTORE") initiator.query(f"RESTORE TABLE tbl ON CLUSTER 'cluster_ver' FROM {backup_name}") new_node.query("SYSTEM SYNC REPLICA ON CLUSTER 'cluster_ver' tbl") assert new_node.query("SELECT * FROM tbl ORDER BY x") == TSV([1, 2]) assert old_node.query("SELECT * FROM tbl ORDER BY x") == TSV([1, 2]) # Error NO_ELEMENTS_IN_CONFIG is unrelated. > assert ( new_node.query( "SELECT name, last_error_message FROM system.errors WHERE NOT (" "(name == 'NO_ELEMENTS_IN_CONFIG')" ")" ) == "" ) E assert "NETLINK_ERROR\tCan\\'t receive Netlink response: error -2\n" == '' E + NETLINK_ERROR Can\'t receive Netlink response: error -2 test_backup_restore_on_cluster/test_different_versions.py:105: AssertionError ---------------------------- Captured stdout setup ----------------------------- Copy common default production configuration from /clickhouse-config. Files: config.xml, users.xml Copy common default production configuration from /clickhouse-config. Files: config.xml, users.xml ------------------------------ Captured log setup ------------------------------ 2025-07-28 17:23:18.777000 [ 609 ] DEBUG : Command:[docker ps | wc -l] (cluster.py:121, run_and_check) 2025-07-28 17:23:18.803000 [ 609 ] DEBUG : Stdout:1 (cluster.py:145, run_and_check) 2025-07-28 17:23:18.803000 [ 609 ] DEBUG : No running containers (conftest.py:95, cleanup_environment) 2025-07-28 17:23:18.804000 [ 609 ] DEBUG : Pruning Docker networks (conftest.py:97, cleanup_environment) 2025-07-28 17:23:18.804000 [ 609 ] DEBUG : Command:[docker network prune --force] (cluster.py:121, run_and_check) 2025-07-28 17:23:18.837000 [ 609 ] DEBUG : Command:[sysctl net.ipv4.ip_local_port_range='55000 65535'] (cluster.py:121, run_and_check) 2025-07-28 17:23:18.841000 [ 609 ] DEBUG : Stdout:net.ipv4.ip_local_port_range = 55000 65535 (cluster.py:145, run_and_check) 2025-07-28 17:23:18.842000 [ 609 ] INFO : Running tests in /ClickHouse/tests/integration/test_backup_restore_on_cluster/test_different_versions.py (cluster.py:2738, start) 2025-07-28 17:23:18.842000 [ 609 ] DEBUG : Cluster start called. is_up=False (cluster.py:2745, start) 2025-07-28 17:23:18.873000 [ 609 ] DEBUG : Docker networks for project roottestbackuprestoreonclusterdifferentversions-gw2 are NETWORK ID NAME DRIVER SCOPE (cluster.py:830, print_all_docker_pieces) 2025-07-28 17:23:18.905000 [ 609 ] DEBUG : Docker containers for project roottestbackuprestoreonclusterdifferentversions-gw2 are CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES (cluster.py:838, print_all_docker_pieces) 2025-07-28 17:23:18.938000 [ 609 ] DEBUG : Docker volumes for project roottestbackuprestoreonclusterdifferentversions-gw2 are DRIVER VOLUME NAME (cluster.py:846, print_all_docker_pieces) 2025-07-28 17:23:18.939000 [ 609 ] DEBUG : Cleanup called (cluster.py:851, cleanup) 2025-07-28 17:23:18.975000 [ 609 ] DEBUG : Docker networks for project roottestbackuprestoreonclusterdifferentversions-gw2 are NETWORK ID NAME DRIVER SCOPE (cluster.py:830, print_all_docker_pieces) 2025-07-28 17:23:19.009000 [ 609 ] DEBUG : Docker containers for project roottestbackuprestoreonclusterdifferentversions-gw2 are CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES (cluster.py:838, print_all_docker_pieces) 2025-07-28 17:23:19.042000 [ 609 ] DEBUG : Docker volumes for project roottestbackuprestoreonclusterdifferentversions-gw2 are DRIVER VOLUME NAME (cluster.py:846, print_all_docker_pieces) 2025-07-28 17:23:19.043000 [ 609 ] DEBUG : Command:[docker container list --all --filter name='^/roottestbackuprestoreonclusterdifferentversions-gw2-.*-1$' --format '{{.ID}}:{{.Names}}'] (cluster.py:121, run_and_check) 2025-07-28 17:23:19.075000 [ 609 ] DEBUG : Unstopped containers: {} (cluster.py:865, cleanup) 2025-07-28 17:23:19.076000 [ 609 ] DEBUG : No running containers for project: roottestbackuprestoreonclusterdifferentversions-gw2 (cluster.py:879, cleanup) 2025-07-28 17:23:19.076000 [ 609 ] DEBUG : Trying to prune unused networks... (cluster.py:885, cleanup) 2025-07-28 17:23:19.107000 [ 609 ] DEBUG : Trying to prune unused images... (cluster.py:901, cleanup) 2025-07-28 17:23:19.107000 [ 609 ] DEBUG : Command:[docker image prune -f] (cluster.py:121, run_and_check) 2025-07-28 17:23:19.136000 [ 609 ] DEBUG : Stderr:Error response from daemon: a prune operation is already running (cluster.py:147, run_and_check) 2025-07-28 17:23:19.137000 [ 609 ] DEBUG : Exitcode:1 (cluster.py:149, run_and_check) 2025-07-28 17:23:19.137000 [ 609 ] DEBUG : Trying to prune unused volumes... (cluster.py:910, cleanup) 2025-07-28 17:23:19.137000 [ 609 ] DEBUG : Command:[docker volume ls | wc -l] (cluster.py:121, run_and_check) 2025-07-28 17:23:19.169000 [ 609 ] DEBUG : Stdout:1 (cluster.py:145, run_and_check) 2025-07-28 17:23:19.169000 [ 609 ] DEBUG : Volumes pruned: 1 (cluster.py:915, cleanup) 2025-07-28 17:23:19.169000 [ 609 ] DEBUG : Setup directory for instance: new_node (cluster.py:2758, start) 2025-07-28 17:23:19.170000 [ 609 ] DEBUG : Create directory for configuration generated in this helper (cluster.py:4628, create_dir) 2025-07-28 17:23:19.171000 [ 609 ] DEBUG : Create directory for common tests configuration (cluster.py:4633, create_dir) 2025-07-28 17:23:19.171000 [ 609 ] DEBUG : Copy common configuration from helpers (cluster.py:4653, create_dir) 2025-07-28 17:23:19.171000 [ 609 ] DEBUG : Generate and write macros file (cluster.py:4705, create_dir) 2025-07-28 17:23:19.172000 [ 609 ] DEBUG : Copy custom test config files ['/ClickHouse/tests/integration/test_backup_restore_on_cluster/configs/backups_disk.xml', '/ClickHouse/tests/integration/test_backup_restore_on_cluster/configs/cluster_different_versions.xml'] to /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-different_versions-1-gw2/new_node/configs/config.d (cluster.py:4741, create_dir) 2025-07-28 17:23:19.172000 [ 609 ] DEBUG : Setup database dir /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-different_versions-1-gw2/new_node/database (cluster.py:4758, create_dir) 2025-07-28 17:23:19.173000 [ 609 ] DEBUG : Setup logs dir /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-different_versions-1-gw2/new_node/logs (cluster.py:4769, create_dir) 2025-07-28 17:23:19.173000 [ 609 ] DEBUG : Entrypoint cmd: ["clickhouse", "server", "--config-file=/etc/clickhouse-server/config.xml", "--log-file=/var/log/clickhouse-server/clickhouse-server.log", "--errorlog-file=/var/log/clickhouse-server/clickhouse-server.err.log", "--"] (cluster.py:4850, create_dir) 2025-07-28 17:23:19.173000 [ 609 ] INFO : external_dir_abs_path=/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-different_versions-1-gw2/backups (cluster.py:4879, create_dir) 2025-07-28 17:23:19.173000 [ 609 ] DEBUG : Setup directory for instance: old_node (cluster.py:2758, start) 2025-07-28 17:23:19.174000 [ 609 ] DEBUG : Create directory for configuration generated in this helper (cluster.py:4628, create_dir) 2025-07-28 17:23:19.174000 [ 609 ] DEBUG : Create directory for common tests configuration (cluster.py:4633, create_dir) 2025-07-28 17:23:19.174000 [ 609 ] DEBUG : Copy common configuration from helpers (cluster.py:4653, create_dir) 2025-07-28 17:23:19.175000 [ 609 ] DEBUG : Generate and write macros file (cluster.py:4705, create_dir) 2025-07-28 17:23:19.175000 [ 609 ] DEBUG : Copy custom test config files ['/ClickHouse/tests/integration/test_backup_restore_on_cluster/configs/backups_disk.xml', '/ClickHouse/tests/integration/test_backup_restore_on_cluster/configs/cluster_different_versions.xml'] to /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-different_versions-1-gw2/old_node/configs/config.d (cluster.py:4741, create_dir) 2025-07-28 17:23:19.175000 [ 609 ] DEBUG : Setup database dir /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-different_versions-1-gw2/old_node/database (cluster.py:4758, create_dir) 2025-07-28 17:23:19.176000 [ 609 ] DEBUG : Setup logs dir /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-different_versions-1-gw2/old_node/logs (cluster.py:4769, create_dir) 2025-07-28 17:23:19.176000 [ 609 ] DEBUG : Entrypoint cmd: ["clickhouse", "server", "--config-file=/etc/clickhouse-server/config.xml", "--log-file=/var/log/clickhouse-server/clickhouse-server.log", "--errorlog-file=/var/log/clickhouse-server/clickhouse-server.err.log", "--"] (cluster.py:4850, create_dir) 2025-07-28 17:23:19.176000 [ 609 ] INFO : external_dir_abs_path=/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-different_versions-1-gw2/backups (cluster.py:4879, create_dir) 2025-07-28 17:23:19.176000 [ 609 ] DEBUG : Env {'ASAN_OPTIONS': 'use_sigaltstack=0', 'TSAN_OPTIONS': 'use_sigaltstack=0', 'CLICKHOUSE_WATCHDOG_ENABLE': '0', 'CLICKHOUSE_NATS_TLS_SECURE': '0', 'LLVM_PROFILE_FILE': '/var/lib/clickhouse/server_%h_%p_%m.profraw', 'keeper_binary': '/clickhouse', 'keeper_cmd_prefix': 'clickhouse keeper', 'image': 'altinityinfra/integration-test:5ccda723c1fc', 'user': '0', 'keeper_fs': 'bind', 'keeper_logs_dir1': '/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-different_versions-1-gw2/keeper1/log', 'keeper_config_dir1': '/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-different_versions-1-gw2/keeper1/config', 'keeper_db_dir1': '/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-different_versions-1-gw2/keeper1/coordination', 'keeper_logs_dir2': '/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-different_versions-1-gw2/keeper2/log', 'keeper_config_dir2': '/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-different_versions-1-gw2/keeper2/config', 'keeper_db_dir2': '/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-different_versions-1-gw2/keeper2/coordination', 'keeper_logs_dir3': '/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-different_versions-1-gw2/keeper3/log', 'keeper_config_dir3': '/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-different_versions-1-gw2/keeper3/config', 'keeper_db_dir3': '/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-different_versions-1-gw2/keeper3/coordination'} stored in /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-different_versions-1-gw2/.env (cluster.py:96, _create_env_file) 2025-07-28 17:23:19.177000 [ 609 ] DEBUG : Trying paths: ['/root/.docker/config.json', '/root/.dockercfg'] (config.py:21, find_config_file) 2025-07-28 17:23:19.177000 [ 609 ] DEBUG : No config file found (config.py:28, find_config_file) 2025-07-28 17:23:19.177000 [ 609 ] DEBUG : Trying paths: ['/root/.docker/config.json', '/root/.dockercfg'] (config.py:21, find_config_file) 2025-07-28 17:23:19.177000 [ 609 ] DEBUG : No config file found (config.py:28, find_config_file) 2025-07-28 17:23:19.195000 [ 609 ] DEBUG : http://localhost:None "GET /version HTTP/1.1" 200 826 (connectionpool.py:547, _make_request) 2025-07-28 17:23:19.196000 [ 609 ] DEBUG : Command:[docker compose --env-file /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-different_versions-1-gw2/.env --project-name roottestbackuprestoreonclusterdifferentversions-gw2 --file /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-different_versions-1-gw2/new_node/docker-compose.yml --file /ClickHouse/tests/integration/helpers/../../../tests/integration/compose/docker_compose_keeper.yml --file /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-different_versions-1-gw2/old_node/docker-compose.yml pull] (cluster.py:121, run_and_check) 2025-07-28 17:23:30.029000 [ 609 ] DEBUG : Stderr: zoo3 Skipped - Image is already being pulled by new_node (cluster.py:147, run_and_check) 2025-07-28 17:23:30.029000 [ 609 ] DEBUG : Stderr: zoo1 Skipped - Image is already being pulled by new_node (cluster.py:147, run_and_check) 2025-07-28 17:23:30.030000 [ 609 ] DEBUG : Stderr: zoo2 Skipped - Image is already being pulled by new_node (cluster.py:147, run_and_check) 2025-07-28 17:23:30.030000 [ 609 ] DEBUG : Stderr: new_node Pulling (cluster.py:147, run_and_check) 2025-07-28 17:23:30.030000 [ 609 ] DEBUG : Stderr: old_node Pulling (cluster.py:147, run_and_check) 2025-07-28 17:23:30.030000 [ 609 ] DEBUG : Stderr: old_node Pulled (cluster.py:147, run_and_check) 2025-07-28 17:23:30.030000 [ 609 ] DEBUG : Stderr: new_node Pulled (cluster.py:147, run_and_check) 2025-07-28 17:23:30.030000 [ 609 ] DEBUG : Setup ZooKeeper (cluster.py:2799, start) 2025-07-28 17:23:30.031000 [ 609 ] DEBUG : Creating internal ZooKeeper dirs: ['/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-different_versions-1-gw2/keeper1/log', '/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-different_versions-1-gw2/keeper1/config', '/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-different_versions-1-gw2/keeper1/coordination', '/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-different_versions-1-gw2/keeper2/log', '/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-different_versions-1-gw2/keeper2/config', '/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-different_versions-1-gw2/keeper2/coordination', '/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-different_versions-1-gw2/keeper3/log', '/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-different_versions-1-gw2/keeper3/config', '/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-different_versions-1-gw2/keeper3/coordination'] (cluster.py:2800, start) 2025-07-28 17:23:30.034000 [ 609 ] DEBUG : Command:[docker compose --project-name roottestbackuprestoreonclusterdifferentversions-gw2 --env-file /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-different_versions-1-gw2/.env --file /ClickHouse/tests/integration/helpers/../../../tests/integration/compose/docker_compose_keeper.yml --verbose up -d] (cluster.py:121, run_and_check) 2025-07-28 17:23:31.010000 [ 609 ] DEBUG : Stderr:time="2025-07-28T17:23:30Z" level=trace msg="Docker Desktop integration not enabled" (cluster.py:147, run_and_check) 2025-07-28 17:23:31.010000 [ 609 ] DEBUG : Stderr: Network roottestbackuprestoreonclusterdifferentversions-gw2_default Creating (cluster.py:147, run_and_check) 2025-07-28 17:23:31.011000 [ 609 ] DEBUG : Stderr: Network roottestbackuprestoreonclusterdifferentversions-gw2_default Created (cluster.py:147, run_and_check) 2025-07-28 17:23:31.011000 [ 609 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-gw2-zoo2-1 Creating (cluster.py:147, run_and_check) 2025-07-28 17:23:31.011000 [ 609 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-gw2-zoo1-1 Creating (cluster.py:147, run_and_check) 2025-07-28 17:23:31.011000 [ 609 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-gw2-zoo3-1 Creating (cluster.py:147, run_and_check) 2025-07-28 17:23:31.011000 [ 609 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-gw2-zoo2-1 Created (cluster.py:147, run_and_check) 2025-07-28 17:23:31.011000 [ 609 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-gw2-zoo1-1 Created (cluster.py:147, run_and_check) 2025-07-28 17:23:31.011000 [ 609 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-gw2-zoo3-1 Created (cluster.py:147, run_and_check) 2025-07-28 17:23:31.012000 [ 609 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-gw2-zoo2-1 Starting (cluster.py:147, run_and_check) 2025-07-28 17:23:31.012000 [ 609 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-gw2-zoo3-1 Starting (cluster.py:147, run_and_check) 2025-07-28 17:23:31.012000 [ 609 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-gw2-zoo1-1 Starting (cluster.py:147, run_and_check) 2025-07-28 17:23:31.012000 [ 609 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-gw2-zoo2-1 Started (cluster.py:147, run_and_check) 2025-07-28 17:23:31.012000 [ 609 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-gw2-zoo3-1 Started (cluster.py:147, run_and_check) 2025-07-28 17:23:31.013000 [ 609 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-gw2-zoo1-1 Started (cluster.py:147, run_and_check) 2025-07-28 17:23:31.013000 [ 609 ] DEBUG : Stderr:time="2025-07-28T17:23:31Z" level=debug msg="otel error" error="" (cluster.py:147, run_and_check) 2025-07-28 17:23:31.013000 [ 609 ] DEBUG : Stderr:time="2025-07-28T17:23:31Z" level=debug msg="otel error" error="" (cluster.py:147, run_and_check) 2025-07-28 17:23:31.013000 [ 609 ] DEBUG : Wait ZooKeeper to start (cluster.py:2436, wait_zookeeper_to_start) 2025-07-28 17:23:31.013000 [ 609 ] DEBUG : get_instance_ip instance_name=zoo1 (cluster.py:2005, get_instance_ip) 2025-07-28 17:23:31.017000 [ 609 ] DEBUG : http://localhost:None "GET /v1.46/containers/roottestbackuprestoreonclusterdifferentversions-gw2-zoo1-1/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-28 17:23:31.018000 [ 609 ] DEBUG : get_kazoo_client: zoo1, ip:172.16.2.3, port:2181, use_ssl:False (cluster.py:3312, get_kazoo_client) 2025-07-28 17:23:31.020000 [ 609 ] INFO : Connecting to 172.16.2.3(172.16.2.3):2181, use_ssl: False (connection.py:650, _connect) 2025-07-28 17:23:31.022000 [ 609 ] WARNING : Connection dropped: socket connection error: Connection refused (connection.py:622, _connect_attempt) 2025-07-28 17:23:31.132000 [ 609 ] INFO : Connecting to 172.16.2.3(172.16.2.3):2181, use_ssl: False (connection.py:650, _connect) 2025-07-28 17:23:31.133000 [ 609 ] WARNING : Connection dropped: socket connection error: Connection refused (connection.py:622, _connect_attempt) 2025-07-28 17:23:31.324000 [ 609 ] INFO : Connecting to 172.16.2.3(172.16.2.3):2181, use_ssl: False (connection.py:650, _connect) 2025-07-28 17:23:31.325000 [ 609 ] WARNING : Connection dropped: socket connection error: Connection refused (connection.py:622, _connect_attempt) 2025-07-28 17:23:31.652000 [ 609 ] INFO : Connecting to 172.16.2.3(172.16.2.3):2181, use_ssl: False (connection.py:650, _connect) 2025-07-28 17:23:31.652000 [ 609 ] WARNING : Connection dropped: socket connection error: Connection refused (connection.py:622, _connect_attempt) 2025-07-28 17:23:32.057000 [ 609 ] INFO : Connecting to 172.16.2.3(172.16.2.3):2181, use_ssl: False (connection.py:650, _connect) 2025-07-28 17:23:32.058000 [ 609 ] WARNING : Connection dropped: socket connection error: Connection refused (connection.py:622, _connect_attempt) 2025-07-28 17:23:32.724000 [ 609 ] INFO : Connecting to 172.16.2.3(172.16.2.3):2181, use_ssl: False (connection.py:650, _connect) 2025-07-28 17:23:32.725000 [ 609 ] WARNING : Connection dropped: socket connection error: Connection refused (connection.py:622, _connect_attempt) 2025-07-28 17:23:33.902000 [ 609 ] INFO : Connecting to 172.16.2.3(172.16.2.3):2181, use_ssl: False (connection.py:650, _connect) 2025-07-28 17:23:33.903000 [ 609 ] WARNING : Connection dropped: socket connection error: Connection refused (connection.py:622, _connect_attempt) 2025-07-28 17:23:36.045000 [ 609 ] INFO : Connecting to 172.16.2.3(172.16.2.3):2181, use_ssl: False (connection.py:650, _connect) 2025-07-28 17:23:36.046000 [ 609 ] DEBUG : Sending request(xid=None): Connect(protocol_version=0, last_zxid_seen=0, time_out=30000, session_id=0, passwd=b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00', read_only=None) (connection.py:312, _submit) 2025-07-28 17:23:36.053000 [ 609 ] INFO : Zookeeper connection established, state: CONNECTED (client.py:532, _session_callback) 2025-07-28 17:23:36.054000 [ 609 ] DEBUG : Sending request(xid=1): GetChildren(path='/', watcher=None) (connection.py:312, _submit) 2025-07-28 17:23:36.055000 [ 609 ] DEBUG : Received response(xid=1): ['keeper'] (connection.py:410, _read_response) 2025-07-28 17:23:36.056000 [ 609 ] DEBUG : Sending request(xid=2): Close() (connection.py:312, _submit) 2025-07-28 17:23:36.061000 [ 609 ] WARNING : Connection dropped: socket connection broken (connection.py:622, _connect_attempt) 2025-07-28 17:23:36.061000 [ 609 ] WARNING : Transition to CONNECTING (connection.py:626, _connect_attempt) 2025-07-28 17:23:36.062000 [ 609 ] INFO : Zookeeper connection lost (client.py:543, _session_callback) 2025-07-28 17:23:36.141000 [ 609 ] WARNING : Failed connecting to Zookeeper within the connection retry policy. (connection.py:515, zk_loop) 2025-07-28 17:23:36.141000 [ 609 ] INFO : Zookeeper session closed, state: CLOSED (client.py:537, _session_callback) 2025-07-28 17:23:36.142000 [ 609 ] DEBUG : get_instance_ip instance_name=zoo2 (cluster.py:2005, get_instance_ip) 2025-07-28 17:23:36.146000 [ 609 ] DEBUG : http://localhost:None "GET /v1.46/containers/roottestbackuprestoreonclusterdifferentversions-gw2-zoo2-1/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-28 17:23:36.147000 [ 609 ] DEBUG : get_kazoo_client: zoo2, ip:172.16.2.2, port:2181, use_ssl:False (cluster.py:3312, get_kazoo_client) 2025-07-28 17:23:36.149000 [ 609 ] INFO : Connecting to 172.16.2.2(172.16.2.2):2181, use_ssl: False (connection.py:650, _connect) 2025-07-28 17:23:36.150000 [ 609 ] DEBUG : Sending request(xid=None): Connect(protocol_version=0, last_zxid_seen=0, time_out=30000, session_id=0, passwd=b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00', read_only=None) (connection.py:312, _submit) 2025-07-28 17:23:36.162000 [ 609 ] INFO : Zookeeper connection established, state: CONNECTED (client.py:532, _session_callback) 2025-07-28 17:23:36.162000 [ 609 ] DEBUG : Sending request(xid=1): GetChildren(path='/', watcher=None) (connection.py:312, _submit) 2025-07-28 17:23:36.164000 [ 609 ] DEBUG : Received response(xid=1): ['keeper'] (connection.py:410, _read_response) 2025-07-28 17:23:36.164000 [ 609 ] DEBUG : Sending request(xid=2): Close() (connection.py:312, _submit) 2025-07-28 17:23:36.170000 [ 609 ] WARNING : Connection dropped: socket connection broken (connection.py:622, _connect_attempt) 2025-07-28 17:23:36.170000 [ 609 ] WARNING : Transition to CONNECTING (connection.py:626, _connect_attempt) 2025-07-28 17:23:36.170000 [ 609 ] INFO : Zookeeper connection lost (client.py:543, _session_callback) 2025-07-28 17:23:36.244000 [ 609 ] WARNING : Failed connecting to Zookeeper within the connection retry policy. (connection.py:515, zk_loop) 2025-07-28 17:23:36.245000 [ 609 ] INFO : Zookeeper session closed, state: CLOSED (client.py:537, _session_callback) 2025-07-28 17:23:36.246000 [ 609 ] DEBUG : get_instance_ip instance_name=zoo3 (cluster.py:2005, get_instance_ip) 2025-07-28 17:23:36.250000 [ 609 ] DEBUG : http://localhost:None "GET /v1.46/containers/roottestbackuprestoreonclusterdifferentversions-gw2-zoo3-1/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-28 17:23:36.251000 [ 609 ] DEBUG : get_kazoo_client: zoo3, ip:172.16.2.4, port:2181, use_ssl:False (cluster.py:3312, get_kazoo_client) 2025-07-28 17:23:36.253000 [ 609 ] INFO : Connecting to 172.16.2.4(172.16.2.4):2181, use_ssl: False (connection.py:650, _connect) 2025-07-28 17:23:36.254000 [ 609 ] DEBUG : Sending request(xid=None): Connect(protocol_version=0, last_zxid_seen=0, time_out=30000, session_id=0, passwd=b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00', read_only=None) (connection.py:312, _submit) 2025-07-28 17:23:36.266000 [ 609 ] INFO : Zookeeper connection established, state: CONNECTED (client.py:532, _session_callback) 2025-07-28 17:23:36.267000 [ 609 ] DEBUG : Sending request(xid=1): GetChildren(path='/', watcher=None) (connection.py:312, _submit) 2025-07-28 17:23:36.269000 [ 609 ] DEBUG : Received response(xid=1): ['keeper'] (connection.py:410, _read_response) 2025-07-28 17:23:36.270000 [ 609 ] DEBUG : Sending request(xid=2): Close() (connection.py:312, _submit) 2025-07-28 17:23:36.276000 [ 609 ] WARNING : Connection dropped: socket connection broken (connection.py:622, _connect_attempt) 2025-07-28 17:23:36.276000 [ 609 ] WARNING : Transition to CONNECTING (connection.py:626, _connect_attempt) 2025-07-28 17:23:36.277000 [ 609 ] INFO : Zookeeper connection lost (client.py:543, _session_callback) 2025-07-28 17:23:36.370000 [ 609 ] WARNING : Failed connecting to Zookeeper within the connection retry policy. (connection.py:515, zk_loop) 2025-07-28 17:23:36.370000 [ 609 ] INFO : Zookeeper session closed, state: CLOSED (client.py:537, _session_callback) 2025-07-28 17:23:36.371000 [ 609 ] DEBUG : All instances of ZooKeeper started: ('zoo1', 'zoo2', 'zoo3') (cluster.py:2452, wait_zookeeper_nodes_to_start) 2025-07-28 17:23:36.371000 [ 609 ] DEBUG : ('Trying to create ClickHouse instance by command %s', 'docker compose --env-file /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-different_versions-1-gw2/.env --project-name roottestbackuprestoreonclusterdifferentversions-gw2 --file /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-different_versions-1-gw2/new_node/docker-compose.yml --file /ClickHouse/tests/integration/helpers/../../../tests/integration/compose/docker_compose_keeper.yml --file /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-different_versions-1-gw2/old_node/docker-compose.yml up -d --no-recreate') (cluster.py:3139, start) 2025-07-28 17:23:36.371000 [ 609 ] DEBUG : Command:[docker compose --env-file /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-different_versions-1-gw2/.env --project-name roottestbackuprestoreonclusterdifferentversions-gw2 --file /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-different_versions-1-gw2/new_node/docker-compose.yml --file /ClickHouse/tests/integration/helpers/../../../tests/integration/compose/docker_compose_keeper.yml --file /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-different_versions-1-gw2/old_node/docker-compose.yml up -d --no-recreate] (cluster.py:121, run_and_check) 2025-07-28 17:23:37.023000 [ 609 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-gw2-zoo2-1 Running (cluster.py:147, run_and_check) 2025-07-28 17:23:37.023000 [ 609 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-gw2-zoo3-1 Running (cluster.py:147, run_and_check) 2025-07-28 17:23:37.023000 [ 609 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-gw2-zoo1-1 Running (cluster.py:147, run_and_check) 2025-07-28 17:23:37.023000 [ 609 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-gw2-new_node-1 Creating (cluster.py:147, run_and_check) 2025-07-28 17:23:37.023000 [ 609 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-gw2-old_node-1 Creating (cluster.py:147, run_and_check) 2025-07-28 17:23:37.023000 [ 609 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-gw2-new_node-1 Created (cluster.py:147, run_and_check) 2025-07-28 17:23:37.023000 [ 609 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-gw2-old_node-1 Created (cluster.py:147, run_and_check) 2025-07-28 17:23:37.024000 [ 609 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-gw2-new_node-1 Starting (cluster.py:147, run_and_check) 2025-07-28 17:23:37.024000 [ 609 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-gw2-old_node-1 Starting (cluster.py:147, run_and_check) 2025-07-28 17:23:37.024000 [ 609 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-gw2-old_node-1 Started (cluster.py:147, run_and_check) 2025-07-28 17:23:37.024000 [ 609 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-gw2-new_node-1 Started (cluster.py:147, run_and_check) 2025-07-28 17:23:37.024000 [ 609 ] DEBUG : ClickHouse instance created (cluster.py:3147, start) 2025-07-28 17:23:37.024000 [ 609 ] DEBUG : get_instance_ip instance_name=new_node (cluster.py:2005, get_instance_ip) 2025-07-28 17:23:37.027000 [ 609 ] DEBUG : http://localhost:None "GET /v1.46/containers/roottestbackuprestoreonclusterdifferentversions-gw2-new_node-1/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-28 17:23:37.027000 [ 609 ] DEBUG : get_instance_ip instance_name=new_node (cluster.py:2015, get_instance_global_ipv6) 2025-07-28 17:23:37.029000 [ 609 ] DEBUG : http://localhost:None "GET /v1.46/containers/roottestbackuprestoreonclusterdifferentversions-gw2-new_node-1/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-28 17:23:37.030000 [ 609 ] DEBUG : Waiting for ClickHouse start in new_node, ip: 172.16.2.6... (cluster.py:3155, start) 2025-07-28 17:23:37.031000 [ 609 ] DEBUG : http://localhost:None "GET /v1.46/containers/roottestbackuprestoreonclusterdifferentversions-gw2-new_node-1/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-28 17:23:37.034000 [ 609 ] DEBUG : http://localhost:None "GET /v1.46/containers/5d7d4155b2f103b6483efc856b1e746440de8796e5966bae05afcb88164bc9b2/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-28 17:23:37.139000 [ 609 ] DEBUG : http://localhost:None "GET /v1.46/containers/5d7d4155b2f103b6483efc856b1e746440de8796e5966bae05afcb88164bc9b2/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-28 17:23:37.244000 [ 609 ] DEBUG : http://localhost:None "GET /v1.46/containers/5d7d4155b2f103b6483efc856b1e746440de8796e5966bae05afcb88164bc9b2/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-28 17:23:37.349000 [ 609 ] DEBUG : http://localhost:None "GET /v1.46/containers/5d7d4155b2f103b6483efc856b1e746440de8796e5966bae05afcb88164bc9b2/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-28 17:23:37.455000 [ 609 ] DEBUG : http://localhost:None "GET /v1.46/containers/5d7d4155b2f103b6483efc856b1e746440de8796e5966bae05afcb88164bc9b2/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-28 17:23:37.561000 [ 609 ] DEBUG : http://localhost:None "GET /v1.46/containers/5d7d4155b2f103b6483efc856b1e746440de8796e5966bae05afcb88164bc9b2/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-28 17:23:37.666000 [ 609 ] DEBUG : http://localhost:None "GET /v1.46/containers/5d7d4155b2f103b6483efc856b1e746440de8796e5966bae05afcb88164bc9b2/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-28 17:23:37.772000 [ 609 ] DEBUG : http://localhost:None "GET /v1.46/containers/5d7d4155b2f103b6483efc856b1e746440de8796e5966bae05afcb88164bc9b2/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-28 17:23:37.876000 [ 609 ] DEBUG : http://localhost:None "GET /v1.46/containers/5d7d4155b2f103b6483efc856b1e746440de8796e5966bae05afcb88164bc9b2/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-28 17:23:37.980000 [ 609 ] DEBUG : http://localhost:None "GET /v1.46/containers/5d7d4155b2f103b6483efc856b1e746440de8796e5966bae05afcb88164bc9b2/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-28 17:23:38.085000 [ 609 ] DEBUG : http://localhost:None "GET /v1.46/containers/5d7d4155b2f103b6483efc856b1e746440de8796e5966bae05afcb88164bc9b2/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-28 17:23:38.189000 [ 609 ] DEBUG : http://localhost:None "GET /v1.46/containers/5d7d4155b2f103b6483efc856b1e746440de8796e5966bae05afcb88164bc9b2/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-28 17:23:38.295000 [ 609 ] DEBUG : http://localhost:None "GET /v1.46/containers/5d7d4155b2f103b6483efc856b1e746440de8796e5966bae05afcb88164bc9b2/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-28 17:23:38.400000 [ 609 ] DEBUG : http://localhost:None "GET /v1.46/containers/5d7d4155b2f103b6483efc856b1e746440de8796e5966bae05afcb88164bc9b2/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-28 17:23:38.505000 [ 609 ] DEBUG : http://localhost:None "GET /v1.46/containers/5d7d4155b2f103b6483efc856b1e746440de8796e5966bae05afcb88164bc9b2/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-28 17:23:38.610000 [ 609 ] DEBUG : http://localhost:None "GET /v1.46/containers/5d7d4155b2f103b6483efc856b1e746440de8796e5966bae05afcb88164bc9b2/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-28 17:23:38.715000 [ 609 ] DEBUG : http://localhost:None "GET /v1.46/containers/5d7d4155b2f103b6483efc856b1e746440de8796e5966bae05afcb88164bc9b2/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-28 17:23:38.820000 [ 609 ] DEBUG : http://localhost:None "GET /v1.46/containers/5d7d4155b2f103b6483efc856b1e746440de8796e5966bae05afcb88164bc9b2/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-28 17:23:38.925000 [ 609 ] DEBUG : http://localhost:None "GET /v1.46/containers/5d7d4155b2f103b6483efc856b1e746440de8796e5966bae05afcb88164bc9b2/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-28 17:23:39.030000 [ 609 ] DEBUG : http://localhost:None "GET /v1.46/containers/5d7d4155b2f103b6483efc856b1e746440de8796e5966bae05afcb88164bc9b2/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-28 17:23:39.135000 [ 609 ] DEBUG : http://localhost:None "GET /v1.46/containers/5d7d4155b2f103b6483efc856b1e746440de8796e5966bae05afcb88164bc9b2/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-28 17:23:39.240000 [ 609 ] DEBUG : http://localhost:None "GET /v1.46/containers/5d7d4155b2f103b6483efc856b1e746440de8796e5966bae05afcb88164bc9b2/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-28 17:23:39.346000 [ 609 ] DEBUG : http://localhost:None "GET /v1.46/containers/5d7d4155b2f103b6483efc856b1e746440de8796e5966bae05afcb88164bc9b2/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-28 17:23:39.451000 [ 609 ] DEBUG : http://localhost:None "GET /v1.46/containers/5d7d4155b2f103b6483efc856b1e746440de8796e5966bae05afcb88164bc9b2/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-28 17:23:39.556000 [ 609 ] DEBUG : http://localhost:None "GET /v1.46/containers/5d7d4155b2f103b6483efc856b1e746440de8796e5966bae05afcb88164bc9b2/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-28 17:23:39.660000 [ 609 ] DEBUG : http://localhost:None "GET /v1.46/containers/5d7d4155b2f103b6483efc856b1e746440de8796e5966bae05afcb88164bc9b2/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-28 17:23:39.765000 [ 609 ] DEBUG : http://localhost:None "GET /v1.46/containers/5d7d4155b2f103b6483efc856b1e746440de8796e5966bae05afcb88164bc9b2/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-28 17:23:39.870000 [ 609 ] DEBUG : http://localhost:None "GET /v1.46/containers/5d7d4155b2f103b6483efc856b1e746440de8796e5966bae05afcb88164bc9b2/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-28 17:23:39.975000 [ 609 ] DEBUG : http://localhost:None "GET /v1.46/containers/5d7d4155b2f103b6483efc856b1e746440de8796e5966bae05afcb88164bc9b2/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-28 17:23:39.977000 [ 609 ] DEBUG : ClickHouse new_node started (cluster.py:3159, start) 2025-07-28 17:23:39.977000 [ 609 ] DEBUG : get_instance_ip instance_name=old_node (cluster.py:2005, get_instance_ip) 2025-07-28 17:23:39.980000 [ 609 ] DEBUG : http://localhost:None "GET /v1.46/containers/roottestbackuprestoreonclusterdifferentversions-gw2-old_node-1/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-28 17:23:39.981000 [ 609 ] DEBUG : get_instance_ip instance_name=old_node (cluster.py:2015, get_instance_global_ipv6) 2025-07-28 17:23:39.983000 [ 609 ] DEBUG : http://localhost:None "GET /v1.46/containers/roottestbackuprestoreonclusterdifferentversions-gw2-old_node-1/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-28 17:23:39.984000 [ 609 ] DEBUG : Waiting for ClickHouse start in old_node, ip: 172.16.2.5... (cluster.py:3155, start) 2025-07-28 17:23:39.987000 [ 609 ] DEBUG : http://localhost:None "GET /v1.46/containers/roottestbackuprestoreonclusterdifferentversions-gw2-old_node-1/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-28 17:23:39.990000 [ 609 ] DEBUG : http://localhost:None "GET /v1.46/containers/129f64d739e7fcbeb9e9718a7c48b50fad6ab922caaed615edf1faf914dce8cc/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-28 17:23:39.991000 [ 609 ] DEBUG : ClickHouse old_node started (cluster.py:3159, start) ----------------------------- Captured stdout call ----------------------------- Using new_node as initiator for BACKUP Using new_node as initiator for RESTORE ------------------------------ Captured log call ------------------------------- 2025-07-28 17:23:39.995000 [ 609 ] DEBUG : Executing query CREATE TABLE tbl ON CLUSTER 'cluster_ver' (x UInt64) ENGINE=ReplicatedMergeTree('/clickhouse/tables/tbl/', '{replica}') ORDER BY tuple() on new_node (cluster.py:3648, query) 2025-07-28 17:23:40.512000 [ 609 ] DEBUG : Executing query INSERT INTO tbl VALUES (1) on new_node (cluster.py:3648, query) 2025-07-28 17:23:40.930000 [ 609 ] DEBUG : Executing query INSERT INTO tbl VALUES (2) on old_node (cluster.py:3648, query) 2025-07-28 17:23:41.348000 [ 609 ] DEBUG : Executing query BACKUP TABLE tbl ON CLUSTER 'cluster_ver' TO Disk('backups', '1') on new_node (cluster.py:3648, query) 2025-07-28 17:23:42.217000 [ 609 ] DEBUG : Executing query DROP TABLE tbl ON CLUSTER 'cluster_ver' SYNC on new_node (cluster.py:3648, query) 2025-07-28 17:23:42.786000 [ 609 ] DEBUG : Executing query RESTORE TABLE tbl ON CLUSTER 'cluster_ver' FROM Disk('backups', '1') on new_node (cluster.py:3648, query) 2025-07-28 17:23:43.656000 [ 609 ] DEBUG : Executing query SYSTEM SYNC REPLICA ON CLUSTER 'cluster_ver' tbl on new_node (cluster.py:3648, query) 2025-07-28 17:23:44.174000 [ 609 ] DEBUG : Executing query SELECT * FROM tbl ORDER BY x on new_node (cluster.py:3648, query) 2025-07-28 17:23:44.593000 [ 609 ] DEBUG : Executing query SELECT * FROM tbl ORDER BY x on old_node (cluster.py:3648, query) 2025-07-28 17:23:45.010000 [ 609 ] DEBUG : Executing query SELECT name, last_error_message FROM system.errors WHERE NOT ((name == 'NO_ELEMENTS_IN_CONFIG')) on new_node (cluster.py:3648, query) ---------------------------- Captured log teardown ----------------------------- 2025-07-28 17:23:45.604000 [ 609 ] DEBUG : Executing query DROP TABLE IF EXISTS tbl ON CLUSTER 'cluster_ver' SYNC on new_node (cluster.py:3648, query) 2025-07-28 17:23:46.274000 [ 609 ] DEBUG : Command:[docker compose --env-file /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-different_versions-1-gw2/.env --project-name roottestbackuprestoreonclusterdifferentversions-gw2 --file /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-different_versions-1-gw2/new_node/docker-compose.yml --file /ClickHouse/tests/integration/helpers/../../../tests/integration/compose/docker_compose_keeper.yml --file /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-different_versions-1-gw2/old_node/docker-compose.yml stop --timeout 20] (cluster.py:121, run_and_check) 2025-07-28 17:23:53.058000 [ 609 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-gw2-new_node-1 Stopping (cluster.py:147, run_and_check) 2025-07-28 17:23:53.059000 [ 609 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-gw2-old_node-1 Stopping (cluster.py:147, run_and_check) 2025-07-28 17:23:53.059000 [ 609 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-gw2-old_node-1 Stopped (cluster.py:147, run_and_check) 2025-07-28 17:23:53.059000 [ 609 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-gw2-new_node-1 Stopped (cluster.py:147, run_and_check) 2025-07-28 17:23:53.059000 [ 609 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-gw2-zoo2-1 Stopping (cluster.py:147, run_and_check) 2025-07-28 17:23:53.059000 [ 609 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-gw2-zoo3-1 Stopping (cluster.py:147, run_and_check) 2025-07-28 17:23:53.060000 [ 609 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-gw2-zoo1-1 Stopping (cluster.py:147, run_and_check) 2025-07-28 17:23:53.060000 [ 609 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-gw2-zoo3-1 Stopped (cluster.py:147, run_and_check) 2025-07-28 17:23:53.060000 [ 609 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-gw2-zoo2-1 Stopped (cluster.py:147, run_and_check) 2025-07-28 17:23:53.060000 [ 609 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-gw2-zoo1-1 Stopped (cluster.py:147, run_and_check) 2025-07-28 17:23:53.060000 [ 609 ] DEBUG : Command:[bash -c [ -f /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-different_versions-1-gw2/new_node/logs/stderr.log ] && zgrep -aH "==================" /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-different_versions-1-gw2/new_node/logs/stderr.log* | ( [ -z "" ] && cat || grep -v "$" ) || true] (cluster.py:121, run_and_check) 2025-07-28 17:23:53.080000 [ 609 ] DEBUG : Command:[bash -c [ -f /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-different_versions-1-gw2/old_node/logs/stderr.log ] && zgrep -aH "==================" /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-different_versions-1-gw2/old_node/logs/stderr.log* | ( [ -z "" ] && cat || grep -v "$" ) || true] (cluster.py:121, run_and_check) 2025-07-28 17:23:53.097000 [ 609 ] DEBUG : Command:[docker compose --env-file /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-different_versions-1-gw2/.env --project-name roottestbackuprestoreonclusterdifferentversions-gw2 --file /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-different_versions-1-gw2/new_node/docker-compose.yml --file /ClickHouse/tests/integration/helpers/../../../tests/integration/compose/docker_compose_keeper.yml --file /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-different_versions-1-gw2/old_node/docker-compose.yml down --volumes] (cluster.py:121, run_and_check) 2025-07-28 17:23:53.669000 [ 609 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-gw2-new_node-1 Stopping (cluster.py:147, run_and_check) 2025-07-28 17:23:53.670000 [ 609 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-gw2-old_node-1 Stopping (cluster.py:147, run_and_check) 2025-07-28 17:23:53.670000 [ 609 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-gw2-new_node-1 Stopped (cluster.py:147, run_and_check) 2025-07-28 17:23:53.670000 [ 609 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-gw2-new_node-1 Removing (cluster.py:147, run_and_check) 2025-07-28 17:23:53.670000 [ 609 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-gw2-old_node-1 Stopped (cluster.py:147, run_and_check) 2025-07-28 17:23:53.670000 [ 609 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-gw2-old_node-1 Removing (cluster.py:147, run_and_check) 2025-07-28 17:23:53.670000 [ 609 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-gw2-new_node-1 Removed (cluster.py:147, run_and_check) 2025-07-28 17:23:53.671000 [ 609 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-gw2-old_node-1 Removed (cluster.py:147, run_and_check) 2025-07-28 17:23:53.671000 [ 609 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-gw2-zoo3-1 Stopping (cluster.py:147, run_and_check) 2025-07-28 17:23:53.671000 [ 609 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-gw2-zoo1-1 Stopping (cluster.py:147, run_and_check) 2025-07-28 17:23:53.671000 [ 609 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-gw2-zoo2-1 Stopping (cluster.py:147, run_and_check) 2025-07-28 17:23:53.671000 [ 609 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-gw2-zoo1-1 Stopped (cluster.py:147, run_and_check) 2025-07-28 17:23:53.671000 [ 609 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-gw2-zoo1-1 Removing (cluster.py:147, run_and_check) 2025-07-28 17:23:53.671000 [ 609 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-gw2-zoo3-1 Stopped (cluster.py:147, run_and_check) 2025-07-28 17:23:53.671000 [ 609 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-gw2-zoo3-1 Removing (cluster.py:147, run_and_check) 2025-07-28 17:23:53.671000 [ 609 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-gw2-zoo2-1 Stopped (cluster.py:147, run_and_check) 2025-07-28 17:23:53.672000 [ 609 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-gw2-zoo2-1 Removing (cluster.py:147, run_and_check) 2025-07-28 17:23:53.672000 [ 609 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-gw2-zoo1-1 Removed (cluster.py:147, run_and_check) 2025-07-28 17:23:53.672000 [ 609 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-gw2-zoo3-1 Removed (cluster.py:147, run_and_check) 2025-07-28 17:23:53.672000 [ 609 ] DEBUG : Stderr: Container roottestbackuprestoreonclusterdifferentversions-gw2-zoo2-1 Removed (cluster.py:147, run_and_check) 2025-07-28 17:23:53.672000 [ 609 ] DEBUG : Stderr: Network roottestbackuprestoreonclusterdifferentversions-gw2_default Removing (cluster.py:147, run_and_check) 2025-07-28 17:23:53.672000 [ 609 ] DEBUG : Stderr: Network roottestbackuprestoreonclusterdifferentversions-gw2_default Removed (cluster.py:147, run_and_check) 2025-07-28 17:23:53.673000 [ 609 ] DEBUG : Cleanup called (cluster.py:851, cleanup) 2025-07-28 17:23:53.703000 [ 609 ] DEBUG : Docker networks for project roottestbackuprestoreonclusterdifferentversions-gw2 are NETWORK ID NAME DRIVER SCOPE (cluster.py:830, print_all_docker_pieces) 2025-07-28 17:23:53.735000 [ 609 ] DEBUG : Docker containers for project roottestbackuprestoreonclusterdifferentversions-gw2 are CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES (cluster.py:838, print_all_docker_pieces) 2025-07-28 17:23:53.768000 [ 609 ] DEBUG : Docker volumes for project roottestbackuprestoreonclusterdifferentversions-gw2 are DRIVER VOLUME NAME (cluster.py:846, print_all_docker_pieces) 2025-07-28 17:23:53.768000 [ 609 ] DEBUG : Command:[docker container list --all --filter name='^/roottestbackuprestoreonclusterdifferentversions-gw2-.*-1$' --format '{{.ID}}:{{.Names}}'] (cluster.py:121, run_and_check) 2025-07-28 17:23:53.798000 [ 609 ] DEBUG : Unstopped containers: {} (cluster.py:865, cleanup) 2025-07-28 17:23:53.799000 [ 609 ] DEBUG : No running containers for project: roottestbackuprestoreonclusterdifferentversions-gw2 (cluster.py:879, cleanup) 2025-07-28 17:23:53.799000 [ 609 ] DEBUG : Trying to prune unused networks... (cluster.py:885, cleanup) 2025-07-28 17:23:53.828000 [ 609 ] DEBUG : Trying to prune unused images... (cluster.py:901, cleanup) 2025-07-28 17:23:53.828000 [ 609 ] DEBUG : Command:[docker image prune -f] (cluster.py:121, run_and_check) 2025-07-28 17:23:53.881000 [ 609 ] DEBUG : Stdout:Total reclaimed space: 0B (cluster.py:145, run_and_check) 2025-07-28 17:23:53.882000 [ 609 ] DEBUG : Images pruned (cluster.py:904, cleanup) 2025-07-28 17:23:53.882000 [ 609 ] DEBUG : Trying to prune unused volumes... (cluster.py:910, cleanup) 2025-07-28 17:23:53.882000 [ 609 ] DEBUG : Command:[docker volume ls | wc -l] (cluster.py:121, run_and_check) 2025-07-28 17:23:53.916000 [ 609 ] DEBUG : Stdout:1 (cluster.py:145, run_and_check) 2025-07-28 17:23:53.916000 [ 609 ] DEBUG : Volumes pruned: 1 (cluster.py:915, cleanup) ----------------- generated report log file: parallel0_1.jsonl ----------------- ============================== slowest durations =============================== 21.22s setup test_backup_restore_on_cluster/test_different_versions.py::test_different_versions 14.66s setup test_asynchronous_metric_jemalloc_profile_active/test.py::test_asynchronous_metric_jemalloc_profile_active 8.31s teardown test_backup_restore_on_cluster/test_different_versions.py::test_different_versions 5.49s call test_backup_restore_on_cluster/test_different_versions.py::test_different_versions 4.95s teardown test_asynchronous_metric_jemalloc_profile_active/test.py::test_asynchronous_metric_jemalloc_profile_active 0.52s call test_asynchronous_metric_jemalloc_profile_active/test.py::test_asynchronous_metric_jemalloc_profile_active =========================== short test summary info ============================ FAILED test_backup_restore_on_cluster/test_different_versions.py::test_different_versions SKIPPED [1] test_asynchronous_metric_jemalloc_profile_active/test.py:30: Disabled for sanitizers ======================== 1 failed, 1 skipped in 38.13s ========================= Traceback (most recent call last): File "/home/ubuntu/_work/ClickHouse/ClickHouse/tests/integration/./runner", line 492, in subprocess.check_call(cmd, shell=True, bufsize=0) File "/usr/lib/python3.10/subprocess.py", line 369, in check_call raise CalledProcessError(retcode, cmd) subprocess.CalledProcessError: Command 'docker run --rm --name clickhouse_integration_tests_h9wuha --privileged --dns-search='.' --memory=30709035008 --security-opt seccomp=unconfined --cap-add=SYS_PTRACE --volume=/home/ubuntu/_work/_temp/test/build/clickhouse:/clickhouse --volume=/home/ubuntu/_work/ClickHouse/ClickHouse/programs/server:/clickhouse-config --volume=/home/ubuntu/_work/ClickHouse/ClickHouse/tests/integration:/ClickHouse/tests/integration --volume=/home/ubuntu/_work/ClickHouse/ClickHouse/utils/backupview:/ClickHouse/utils/backupview --volume=/home/ubuntu/_work/ClickHouse/ClickHouse/utils/grpc-client/pb2:/ClickHouse/utils/grpc-client/pb2 --volume=/run:/run/host:ro --volume=clickhouse_integration_tests_volume:/var/lib/docker -e DOCKER_DOTNET_CLIENT_TAG=11de0b29a15d -e DOCKER_HELPER_TAG=5dc43a6382f0 -e DOCKER_BASE_TAG=5ccda723c1fc -e DOCKER_KERBEROS_KDC_TAG=9391ecdee8d7 -e DOCKER_MYSQL_GOLANG_CLIENT_TAG=9bec2a638e6e -e DOCKER_MYSQL_JAVA_CLIENT_TAG=766bff31cfe4 -e DOCKER_MYSQL_JS_CLIENT_TAG=41ba7c2ec2a1 -e DOCKER_MYSQL_PHP_CLIENT_TAG=88be89c1e3b6 -e DOCKER_NGINX_DAV_TAG=b55ac9cd7519 -e DOCKER_POSTGRESQL_JAVA_CLIENT_TAG=a4eff5c7f4d6 -e DOCKER_PYTHON_BOTTLE_TAG=d862517635bf -e DOCKER_CLIENT_TIMEOUT=300 -e COMPOSE_HTTP_TIMEOUT=600 -e PYTHONUNBUFFERED=1 -e PYTEST_ADDOPTS="--dist=loadfile -n 10 -rfEps --run-id=1 --color=no --durations=0 --report-log=parallel0_1.jsonl --report-log-exclude-logs-on-passed-tests test_asynchronous_metric_jemalloc_profile_active/test.py::test_asynchronous_metric_jemalloc_profile_active test_backup_restore_on_cluster/test_different_versions.py::test_different_versions -vvv " altinityinfra/integration-tests-runner:226bfaf75ac1 ' returned non-zero exit status 1.